home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / wx_lib10.zoo / wx_print.c < prev    next >
C/C++ Source or Header  |  1992-08-02  |  237b  |  17 lines

  1. #include <stdio.h>
  2. #include <stdarg.h>
  3. #include <wx_lib.h>
  4.  
  5. void wx_printf(ws,fmt)
  6. Window    *ws;
  7. char    *fmt;
  8. {
  9.     va_list    args;
  10.     char    buf[255];
  11.  
  12.     va_start(args,fmt);
  13.     vsprintf(buf,fmt,args);
  14.     va_end(args);
  15.     wx_puts(ws,buf);
  16. }
  17.